home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / AEGestalt 1.0b3 / UAEGestalt.h < prev    next >
Encoding:
Text File  |  1991-12-11  |  1.0 KB  |  50 lines  |  [TEXT/MPS ]

  1. //     UAEGestalt.h 
  2. //     Copyright © 1991 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TAEApplication class, the base application class
  5. //    for the AEGestalt application
  6.  
  7. // INCLUDE FILES
  8.  
  9. #ifndef __AEGESTALT__
  10. #define __AEGESTALT__
  11.  
  12. #ifndef __INCLUDEFILES__
  13. #include "IncludeFiles.h"
  14. #endif
  15.  
  16. #ifndef __LABELVIEW__
  17. #include "ULabelView.h"
  18. #endif
  19.  
  20. #ifndef __INFORMATIONVIEW__
  21. #include "UInformationView.h"
  22. #endif
  23.  
  24. #ifndef __UGRAYFILLADORNER__
  25. #include "UGrayfillAdorner.h"
  26. #endif
  27.  
  28. #ifndef __AEDOCUMENT__
  29. #include "UAEDocument.h"
  30. #endif
  31.  
  32. #ifndef __AESERVERCOMMAND__
  33. #include "UAEServerCommand.h"
  34. #endif
  35.  
  36.  
  37. // TApplication 
  38.  
  39. class TAEApplication : public TApplication {
  40. public:
  41.                                 TAEApplication();
  42.     virtual pascal void         IAEApplication(OSType fileType, OSType creator);
  43.     virtual pascal TDocument*     DoMakeDocument(CommandNumber, TFile*);
  44.     virtual pascal void          DoAppleCommand(CommandNumber aCommandNumber,
  45.                                                  const AppleEvent& message,
  46.                                                   const AppleEvent& reply);
  47.  
  48. };
  49.  
  50. #endif